home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / internet / zannetb1.zip / zannet.lgn < prev    next >
Text File  |  1996-12-16  |  2KB  |  52 lines

  1. #
  2. # Login Script for ZanNet Client
  3. #
  4. #
  5. # This is an extremely simple scripting language for logging into a Telnet session. See the 
  6. # ZanNet manual for more information.
  7. #
  8. # Keywords must start in column one and currently are defined as:
  9. #
  10. # ServerName    -- The Telnet name address of the shell account server. Multiple servers are 
  11. #                 permitted. Raw IP addresses are NOT supported yet. 
  12. #
  13. # HomeDirectory -- The directory you want the the server to use as the root.
  14. #
  15. # MBDiskSpace   -- Your disk space limit as defined by your service provider.
  16. #
  17. # SendString    -- A string sent after waiting a specified time to the Telnet session.
  18. #                 There are pre-defined variables for use with send string. They
  19. #                 are:
  20. #               
  21. #                 $Username -- Your user name as defined in the login dialog. 
  22. #                 $Password -- The password for that user name from login dialog.
  23. #                 $LocalIP -- The Windows '95 client IP address .
  24. #                 $LocalPort -- The Windows '95 port used for ZanServer connections. 
  25. #                 $Enter -- A carriage return and line feed.
  26. #                 $Connected -- Required to acknowlege a ZanServer connection. 
  27. #
  28. #                 SendString will take up to three regular parameters.
  29. # All comments must have a '#' in the first column. If the login fails and debug is on you will
  30. # be in a very primitive linemode Telnet session. Turn debug on from setup to get to this Telnet 
  31. # window at any time. 
  32. #
  33. #
  34. # Login script for cybergate (AIX on RS-6000)
  35. #
  36. ServerName      cyber.gate.net
  37. MBDiskSpace     20
  38. #
  39. #               Wait String    Timeout    Send String       Parm1         Parm2          Parm3
  40. #               -----------    -------    -----------       -----         -----          -----
  41. SendString      login:         45      $Username         $Enter
  42. SendString      Password:      45         $Password         $Enter
  43. SendString      [vt100]        45         $Enter
  44. SendString      zan>           45         zanserv.aix       $LocalIP      $LocalPort     $Enter
  45. SendString      CONNECT        45         $Connected
  46. #
  47. #
  48. #
  49. #
  50.